home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: Greatest Hits 1996
/
Amiga Games: Greatest Hits 1996.iso
/
archive
/
userbox
/
publicdomain
/
installproged.lha
/
installproged
/
sasc_support
/
LastError.script
< prev
next >
Wrap
Text File
|
1996-03-11
|
451b
|
31 lines
/*******************************************
*
* LastError.script
* by Giovanni Lambiase (C) 1995
*
* This Arexx macro jump to last error in
* SCMSG list.
*
*******************************************/
OPTIONS RESULTS
OPTIONS FAILAT 31
IF SHOW('PORTS','SC_SCMSG') THEN
DO
ADDRESS 'SC_SCMSG'
/* If no errors -> close SCMSG */
'TEXT'
IF RESULT='' THEN
DO
'HIDE'
END
ELSE
DO
/* Jump to last error */
'BOTTOM'
'SELECT'
END
END